.section-text-video {

  .container-video {
    width: 100%;
    aspect-ratio: 1.5;
    overflow: hidden;
    position: relative;
    background: #000;
    display: flex;
    border-radius: 100px 25px 25px 25px;

    .container-poster {
      height: 100%;
      position: absolute;
      width: 100%;
      top: 0;
      left: 0;
      z-index: 2;

      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .btn-play {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: contain;
        border: none;
        outline: none;
        top: 0;
        left: 0;
        background: url("/wp-content/uploads/2025/06/youtube.webp") no-repeat center;
      }
    }

    iframe {
      width: 100%;
      height: 100%;
      position: absolute;
      left: 0;
      top: 0;
      z-index: 2;
    }

    .spinner-border {
      margin: auto;
      width: 60px;
      height: 60px;
    }
  }

  @media (min-width: 768px) {
    .gallery {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
    }

    .gallery-item {
      flex: 1 1 auto;
      min-width: 170px;
      max-width: 31%;
      box-sizing: border-box;
      aspect-ratio: 1.4;
      border-radius: 15px;
      overflow: hidden;

      dt {
        height: 100%;
        width: 100%;
      }
    }

    .gallery-icon img {
      max-width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }
  }

}